home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue.arc / TVISTAT.C < prev    next >
C/C++ Source or Header  |  1990-01-09  |  940b  |  24 lines

  1. /*=======================================================*/
  2. /*  TVISTAT.C                                            */
  3. /*                                                       */
  4. /*  (c) Copyright 1988 Ralf Brown  All Rights Reserved   */
  5. /*  May be freely copied for noncommercial use, so long  */
  6. /*  as this copyright notice remains intact, and any     */
  7. /*  changes are marked in the comment blocks preceding   */
  8. /*  functions.                                           */
  9. /*=======================================================*/
  10.  
  11. #include "tvapi.h"
  12.  
  13. /*======================================================*/
  14. /* TVtimer_status  is timer running?                    */
  15. /*   Ralf Brown 4/3/88                                  */
  16. /*======================================================*/
  17.  
  18. int pascal TVtimer_status(OBJECT timer)
  19. {
  20.    return (int) TVsendmsg1(STATUS_MSG,TOS,timer) ;
  21. }
  22.  
  23. /* End of TVISTAT.C */
  24.